home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume90 / util / uujoin / part01 / makefile < prev    next >
Makefile  |  1990-10-10  |  828b  |  36 lines

  1. # Default Aztec C makefile
  2. #
  3. #
  4. # Define INCDIR to be the name of the directory where FileScan.h is stored,
  5. # If it's not in your normal include path. Otherwise, remove the -I
  6. # option from the compiler flags.
  7.  
  8. INCDIR = src:mrrlib
  9.  
  10. # Debug version
  11. #CFLAGS = -DAMIGA -pa -bs -I$(INCDIR)
  12. #LFLAGS = -g
  13.  
  14. # Non-debug version:
  15. CFLAGS = -DAMIGA -pa -so -I$(INCDIR)
  16. LFLAGS = 
  17.  
  18. PROGRAM=UUJoin
  19. SHARFILES = UUJoin.ReadMe UUJoin.uue UUJoin.c makefile FileScan.c FileScan.h
  20.  
  21. $(PROGRAM): $(PROGRAM).o
  22.     ln $(LFLAGS) -o $(PROGRAM) $(PROGRAM).o FileScan.o -lc 
  23.  
  24. shar: $(SHARFILES)
  25.     makekit -n UUJOIN $(SHARFILES)
  26.     rm FileScan.*
  27.  
  28. UUJoin.uue: UUJoin
  29.     uuencode >UUJoin.uue UUJoin UUJoin
  30.  
  31. FileScan.c: src:MRRLib/FileScan.c
  32.     cp src:MRRLib/FileScan.c FileScan.c
  33.  
  34. FileScan.h: src:MRRLib/FileScan.h
  35.     cp src:MRRLib/FileScan.h FileScan.h
  36.